home *** CD-ROM | disk | FTP | other *** search
-
- % This sample shows how to
- % - use a pointer in order to edit the same VAR-PARAMETER twice
- % - write objects in an object-oriented form instead of two tables
-
- Malloc(90);
- @xbwstart(("test") ("color"));
- wdw(TEST 1 1 25 9 StandardWDW);
-
- o(TEST01 I I 1 3 23 1 Standard); bg(TEST01 . 1234); eg();
- o(TEST02 I I 1 5 23 1 Standard); bg(TEST02 . (ptr)OBJ:TEST01.V); eg();
- % ^^^^^^^^^^^^^^^^^^
- % ^Pointer^
- o(TEST03 S . 14 7 10 1 Secure );
- bg(TEST03 . ("Stop XbW") );
- cn(rqK ("@xbwstop();") );
- eg();
-
- End();
-
-